home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / cstdio.arc / INCLUDE.ARC / MSSTAT.H < prev    next >
C/C++ Source or Header  |  1984-07-25  |  465b  |  21 lines

  1. /*    msstat.h - MS-DOS stat definitions.
  2.     G. R. Mansfield.  84/07/25.
  3.     Ver 1.0-4725.
  4. */
  5.  
  6. #define SA_AM 0x3F    /* attribute mask */
  7. #define SA_RO 0x01    /* read only */
  8. #define SA_HD 0x02    /* hidden file */
  9. #define SA_SY 0x04    /* system file */
  10. #define SA_VL 0x08    /* volume label */
  11. #define SA_SD 0x10    /* sub-directory */
  12. #define SA_AC 0x20    /* archive */
  13.  
  14. struct msstat {
  15.     BYTE st_attr;
  16.     int  st_time;
  17.     int  st_date;
  18.     long st_size;
  19.     char st_name[13];
  20. };
  21.